home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 November / Macworld (1999-11).dmg / Updaters / WhiteCap 3.0.4 / WhiteCap Source.sit / WhiteCap Source / Common / General Tools / Headers / Hashable.h < prev    next >
Text File  |  1999-07-13  |  179b  |  14 lines

  1. #ifndef _HASHABLE_H
  2. #define _HASHABLE_H
  3.  
  4.  
  5. class Hashable {
  6.  
  7.     public:
  8.         virtual long            Hash() const = 0;
  9.         
  10.         virtual bool            Equals( const Hashable* inComp ) const = 0;
  11. };
  12.  
  13. #endif
  14.